home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / fax / src / port / solaris2 / random.c < prev    next >
C/C++ Source or Header  |  1994-08-01  |  128b  |  10 lines

  1. #include <math.h>
  2.  
  3. /* NB: should call srand48 but this should be good enough... */
  4.  
  5. long
  6. random(void)
  7. {
  8.     return lrand48();
  9. }
  10.